home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjpanel11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  726 b   |  28 lines

  1. #ifndef _DTJPANEL11_HPP
  2. #define _DTJPANEL11_HPP
  3.  
  4. #include "dtjcont11.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJPanel11 : public DTJContainer11
  7. {
  8.     public:
  9.         DTJPanel11( const MetaObject * pMetaObj );
  10.         virtual ~DTJPanel11();
  11.         
  12.     virtual void GenFileFragment( MMFileFragment fg, WStringList &,
  13.                       MMFileGenerationParms * parms ) const;
  14.  
  15.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  16.                    ostream& src,
  17.                    MMCodeGenerationParms& pGenParms );
  18.  
  19.     protected:
  20.         void GenerateHTML( ostream& src,
  21.                MMJCodeGenerationParms* pGenParms) const;
  22. };
  23.  
  24. // needed for mdreader
  25. typedef DTJPanel11 DTjava__dot__awt__dot__Panel__dot__11;
  26.  
  27. #endif // _DTJPANEL11_HPP
  28.